home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Swiftsoft Multimedia Tools / MMTOOL3.EXE / MMCDREG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-02-22  |  2.3 KB  |  56 lines

  1. {========================================================================}
  2. {=                (c) 1995-98 SwiftSoft Ronald Dittrich                 =}
  3. {========================================================================}
  4. {=                          All Rights Reserved                         =}
  5. {========================================================================}
  6. {=  D 01099 Dresden             = Tel.: +0351-8012255                   =}
  7. {=  Loewenstr.7a                = info@swiftsoft.de                     =}
  8. {========================================================================}
  9. {=  Actual versions on http://www.swiftsoft.de/mmtools.html             =}
  10. {========================================================================}
  11. {=  This code is for reference purposes only and may not be copied or   =}
  12. {=  distributed in any format electronic or otherwise except one copy   =}
  13. {=  for backup purposes.                                                =}
  14. {=                                                                      =}
  15. {=  No Delphi Component Kit or Component individually or in a collection=}
  16. {=  subclassed or otherwise from the code in this unit, or associated   =}
  17. {=  .pas, .dfm, .dcu, .asm or .obj files may be sold or distributed     =}
  18. {=  without express permission from SwiftSoft.                          =}
  19. {=                                                                      =}
  20. {=  For more licence informations please refer to the associated        =}
  21. {=  HelpFile.                                                           =}
  22. {========================================================================}
  23. {=  $Date: 20.01.1998 - 18:00:00 $                                      =}
  24. {========================================================================}
  25. unit MMCDReg;
  26.  
  27. {$I COMPILER.INC}
  28.  
  29. interface
  30.  
  31. {$R MMCDREAD.D32}
  32.  
  33. uses
  34.     Controls,
  35.     Classes,
  36.     DsgnIntf,
  37.     SysUtils,
  38.     MMDesign,
  39.     MMDSPObj,
  40.     MMCDRead;
  41.  
  42. Procedure Register;
  43.  
  44. implementation
  45.  
  46. {========================================================================}
  47. procedure Register;
  48. begin
  49.    RegisterComponents('MMWave', [TMMCDReader]);
  50. end;
  51.  
  52. initialization
  53.     RegisterPropertyException(ptOutput,'DSP',TMMDSPComponent,'Output',TMMCDReader,nil);
  54. end.
  55.  
  56.